home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Bus / A / 4D Feb Etrnls.cpt / Feb.Ext.rsrc / 4DTE_15012 < prev    next >
Text File  |  1988-02-16  |  1KB  |  26 lines

  1. DocumentInfos(Var1;Var2;Var3;Var4;Var5;Var6;Var7;Var8;Var9)
  2.    Var1 is an alphanumeric variable
  3.    Var2...Var5 are numeric variables
  4.    Var6...Var7 are date variables
  5.    Var8 and Var9 are numeric variables
  6.  
  7. DocumentInfos returns information about the document whose name is specified by Var1.
  8.  
  9. After the call :
  10.  
  11. Var1, contains the full pathname of the document
  12. Var2, contains the logical size of the data fork which means the number of written bytes in the file.
  13. Var3, contains the physical size of the data fork which means the allocated space on the disk for the file.
  14. Var4, like Var2 but for the resource fork.
  15. Var5, like Var3 but for the resource fork
  16.  
  17. Note
  18. The logical size given by the Finder is equal to Var2+Var4. The physical size given by the Finder is equal to Var3+Var5.
  19.  
  20. Var6, contains the date of the creation of the document.
  21. Var7, contains the date of the last modification.
  22. Var8, contains the time of the creation expressed in seconds since midnight.
  23. Var9, contains the time of the last modification expressed in seconds since midnight.
  24.  
  25. Note
  26. If the document does not exist, Var2 is equal to -1.